home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 2 / CU Amiga Magazine's Super CD-ROM 02 (1996)(EMAP Images)(GB)[!][issue 1996-04].iso / magazine / amiga_e / amigae.june.archive / 000092_crash!aston.ac….ac.uk!nichowlw_Tue, 15 Jun 93 03:48:21 PST.msg < prev    next >
Text File  |  1993-08-31  |  1KB  |  34 lines

  1. Received: by bkhouse.cts.com (V1.16/Amiga)
  2.     id AA00000; Tue, 15 Jun 93 03:48:21 PST
  3. Received: from sun2.nsfnet-relay.ac.uk by crash.cts.com with smtp
  4.     (Smail3.1.28.1 #15) id m0o5Xjm-0000XNC; Tue, 15 Jun 93 02:55 PDT
  5. Received: from 134.151.52.218 by email.aston.ac.uk with SMTP (PP) 
  6.           id <26910-0@email.aston.ac.uk>; Tue, 15 Jun 1993 10:51:30 +0100
  7. Via: uk.ac.aston; Tue, 15 Jun 1993 10:51:48 +0100
  8. Date: Tue, 15 Jun 93 10:55:35 BST
  9. Message-Id: <2334.9306150955@cs.aston.ac.uk>
  10. X-Sun-Charset: US-ASCII
  11. content-length: 414
  12. From: nichowlw <nichowlw@cs.aston.ac.uk>
  13. To: amigae@bkhouse.cts.com
  14. Subject: RE:Asm.e....I think
  15.  
  16. To Barry : 
  17.  
  18.  Here is what I think your problems might be, I am a bit rusty on the old
  19. 68000, but try this, the problem is mainly in the addressing modes, make sure
  20. that you know these inside out.
  21.  
  22.  
  23.  
  24.   > MOVE.L  #table,A0
  25.  
  26.  Try 
  27.      MOVEA.L #table,A0 or
  28.      LEA table,A0    (faster)
  29.  
  30.  
  31.   > ADD.W   table+2,D0 
  32.     
  33.   Best using the above method, setting pointer to table, but to fix this
  34. line try ADD.W #table+2,D0